bors [Sat, 21 Jan 2017 00:59:01 +0000 (00:59 +0000)]
Auto merge of #3570 - integer32llc:fix-slug-link, r=alexcrichton
Link to the category slugs page from the docs instead
Oops, just noticed that I didn't change this link in the docs when we changed to specifying slugs for categories in `Cargo.toml` :-/
bors [Fri, 20 Jan 2017 23:02:02 +0000 (23:02 +0000)]
Auto merge of #3569 - malept:manifest-example-typo-fix, r=alexcrichton
Fix typo in badges section of example manifest
Extremely small typo I saw when I was looking at the new badges feature.
Carol (Nichols || Goulding) [Fri, 20 Jan 2017 21:19:30 +0000 (16:19 -0500)]
Link to the category slugs page from the docs instead
bors [Fri, 20 Jan 2017 20:57:21 +0000 (20:57 +0000)]
Auto merge of #3556 - KalitaAlexey:allow-examples-to-be-library, r=alexcrichton
Allow examples to be library
This PR allows to specify **crate-type** to an example in **Cargo.toml**.
After this PR an example's **crate-type** can be:
* lib
* rlib
* dylib
* proc-macro
Please look at src/cargo/core/manifest.rs:116 because I am not sure whether I done it right.
I haven't added any tests.
I'd like to add them if someone says me how to do that.
Fixes #2358.
Mark Lee [Fri, 20 Jan 2017 19:09:11 +0000 (11:09 -0800)]
Fix typo in badges section of example manifest
bors [Fri, 20 Jan 2017 18:48:12 +0000 (18:48 +0000)]
Auto merge of #3554 - bmwiedemann:patch-1, r=alexcrichton
make build reproducible
see https://reproducible-builds.org/ for why this is good
and https://wiki.debian.org/ReproducibleBuilds/TimestampsProposal#Bash_.2F_POSIX_shell for variants that also work on BSD
Alexey [Fri, 20 Jan 2017 17:27:25 +0000 (21:27 +0400)]
Merge branch 'master' into allow-examples-to-be-library
bors [Fri, 20 Jan 2017 16:51:03 +0000 (16:51 +0000)]
Auto merge of #3568 - alexcrichton:fix-small, r=alexcrichton
Update travis token and fix warning
Alex Crichton [Fri, 20 Jan 2017 16:49:30 +0000 (08:49 -0800)]
Update travis token and fix warning
Bernhard M. Wiedemann [Tue, 17 Jan 2017 14:53:45 +0000 (14:53 +0000)]
make build reproducible
by allowing build systems to use a constant date instead of the current one
see https://reproducible-builds.org/ for why this is good
This call is designed to work with both GNU date and BSD date implementations
Kalita Alexey [Fri, 20 Jan 2017 06:50:13 +0000 (09:50 +0300)]
Fixed the test
Kalita Alexey [Fri, 20 Jan 2017 05:12:12 +0000 (08:12 +0300)]
Fixed tests and removed the unnecessary comment
bors [Thu, 19 Jan 2017 23:43:24 +0000 (23:43 +0000)]
Auto merge of #3565 - integer32llc:fix-gh-pages, r=alexcrichton
Fix doc publishing: Remove $USER from the --user argument from pip install
[This looks to be the cause of why docs aren't publishing to gh-pages](https://travis-ci.org/rust-lang/cargo/jobs/
193507734#L1059). I was able to publish the docs to [my repo's gh-pages](https://integer32llc.github.io/cargo/) with this change (and setting my own secure gh-token).
It looks like this problem got introduced [in this commit](https://github.com/rust-lang/cargo/commit/
dc15ca5d202d6d10f6be45f388759a902723de6c). I don't really know python/pip, but `$USER` wasn't there before and [Travis' docs just say `--user`](https://docs.travis-ci.com/user/languages/python/#pip).
Carol (Nichols || Goulding) [Thu, 19 Jan 2017 21:11:41 +0000 (16:11 -0500)]
Remove $USER from the --user argument from pip install
Kalita Alexey [Thu, 19 Jan 2017 20:43:56 +0000 (23:43 +0300)]
Fixed tests
bors [Thu, 19 Jan 2017 19:03:13 +0000 (19:03 +0000)]
Auto merge of #3563 - alexcrichton:upload-docs-again, r=alexcrichton
Run full Travis builds on all non-PR branches
This'll result in duplicate work when merging, but otherwise we're not uploading
docs.
Alex Crichton [Thu, 19 Jan 2017 17:02:19 +0000 (09:02 -0800)]
Run full Travis builds on all non-PR branches
This'll result in duplicate work when merging, but otherwise we're not uploading
docs.
bors [Wed, 18 Jan 2017 23:01:03 +0000 (23:01 +0000)]
Auto merge of #3560 - KalitaAlexey:make-doc-subcommand-print-duration, r=alexcrichton
Made doc subcommand print duration
This PR makes `cargo doc` print duration.
Fixes #3016.
Kalita Alexey [Wed, 18 Jan 2017 19:37:52 +0000 (22:37 +0300)]
Made doc subcommand print duration
bors [Wed, 18 Jan 2017 18:12:21 +0000 (18:12 +0000)]
Auto merge of #3558 - matklad:fix-test, r=alexcrichton
Fix a test.
That's the test we've discussed in #3443
Kalita Alexey [Wed, 18 Jan 2017 07:56:22 +0000 (10:56 +0300)]
Added tests for building an example as a library
Kalita Alexey [Wed, 18 Jan 2017 07:56:11 +0000 (10:56 +0300)]
Fixed style issues
Aleksey Kladov [Mon, 16 Jan 2017 23:05:32 +0000 (02:05 +0300)]
Fix a test.
Presumably, it should failed when it was first written, but Cargo does not do such validation yet.
bors [Wed, 18 Jan 2017 02:45:13 +0000 (02:45 +0000)]
Auto merge of #3552 - keeperofdakeys:proc-macro-doc-test, r=alexcrichton
Allow doc tests to run on proc macro crates
Fixes https://github.com/rust-lang/cargo/issues/3545
Since `--test` works for rustc, doctests should also work. Currently cargo isn't setup to run doctests for proc macro crates, this PR adds them to the list.
Currently rustdoc can run doctests for proc-macro crates, but the `phase_2_configure_and_expand` call` triggers the following warning:
```
the `#[proc_macro_derive]` attribute is only usable with crates of the `proc-macro` crate type
```
So perhaps this PR should wait until I've finished creating/testing the PR for rustc.
bors [Wed, 18 Jan 2017 00:22:59 +0000 (00:22 +0000)]
Auto merge of #3443 - matklad:path-dep-non-ws, r=alexcrichton
Path deps outside workspace are not members
closes #3192
This implements @Boscop suggestion: path dependencies pointing outside the workspace are never members.
Not sure that it handled #3192 fully: you can't exclude a path dependency within workspace. Not sure this is super useful though...
Josh [Tue, 17 Jan 2017 23:48:35 +0000 (10:48 +1100)]
Add tests for doc testing proc macro crates
bors [Tue, 17 Jan 2017 22:40:07 +0000 (22:40 +0000)]
Auto merge of #3546 - integer32llc:badgers, r=alexcrichton
Upload Travis CI and Appveyor badge metadata specified in the manifest
This goes with rust-lang/crates.io#504. This has cargo upload badge metadata to crates.io on publish, and will print any warnings it gets back from crates.io about unknown badges or missing required badge attributes!
This will definitely cause some merge conflicts with #3301, I'll watch and fix whichever one gets merged 2nd :)
Jake Goulding [Sun, 1 Jan 2017 20:14:34 +0000 (15:14 -0500)]
Upload badge metadata specified in the manifest
Kalita Alexey [Tue, 17 Jan 2017 19:25:07 +0000 (22:25 +0300)]
Merge branch 'master' of https://github.com/rust-lang/cargo into allow-examples-to-be-library
Kalita Alexey [Tue, 17 Jan 2017 19:23:48 +0000 (22:23 +0300)]
Allow examples to be libraries
bors [Tue, 17 Jan 2017 18:57:20 +0000 (18:57 +0000)]
Auto merge of #3301 - integer32llc:categories, r=alexcrichton
Upload categories specified in the manifest
This adds support for uploading categories to crates.io, if they are specified in the manifest.
This goes with rust-lang/crates.io#473. It should be fine to merge this PR either before or after that one; crates.io master doesn't care if the categories are in the metadata or not. With that PR, I was able to use this patch with cargo to add categories to a crate!
Josh [Tue, 17 Jan 2017 11:28:59 +0000 (22:28 +1100)]
Allow doc tests to run on proc macro crates
bors [Tue, 17 Jan 2017 02:48:37 +0000 (02:48 +0000)]
Auto merge of #3542 - creativcoder:check-digit-name, r=alexcrichton
Add a check for names starting with a digit
According to Rust grammer https://doc.rust-lang.org/grammar.html#extern-crate-declarations for extern crate declarations, a crate name cannot start with a digit.
But, currently this rule is not upheld by `cargo new` as creating a project like:
`cargo new 2048` would create a project named 2048 which obviously won't compile with crate declaration like `extern crate 2048` by a consumer.
This obviously is a rare case in practice, but its always good to check i guess.
This PR adds a check to the `new` method and `bail`s out with a message for any names starting with a digit.
PS: I noticed it while making a 2048 puzzle game as a library so thought it would be nice to add this check :)
Rahul Sharma [Sun, 15 Jan 2017 02:16:24 +0000 (07:46 +0530)]
Add a check for names starting with a digit
Aleksey Kladov [Sat, 14 Jan 2017 22:14:47 +0000 (01:14 +0300)]
More test for workspaces \w path dependencies
Aleksey Kladov [Mon, 2 Jan 2017 18:00:05 +0000 (21:00 +0300)]
Document new rules about path deps in workspace
Aleksey Kladov [Thu, 22 Dec 2016 17:56:40 +0000 (20:56 +0300)]
Path deps outside workspace are not members
closes #3192
bors [Fri, 13 Jan 2017 18:06:42 +0000 (18:06 +0000)]
Auto merge of #3534 - sfackler:opt-level, r=alexcrichton
Allow debuginfo level to be specified
`true` is mapped to `2`, which matches current behavior.
r? @alexcrichton
Steven Fackler [Thu, 12 Jan 2017 05:35:17 +0000 (21:35 -0800)]
Allow debuginfo level to be specified
`true` is mapped to `2`, which matches current behavior.
bors [Thu, 12 Jan 2017 07:56:39 +0000 (07:56 +0000)]
Auto merge of #3533 - jtgeibel:3519-dev-target, r=alexcrichton
Rename debug target to dev in build output
This renames the debug target to dev in the build output for non-release
builds. This includes the output of commands such as `cargo build`,
`cargo test`, and `cargo doc`.
Closes #3519
bors [Thu, 12 Jan 2017 05:56:12 +0000 (05:56 +0000)]
Auto merge of #3532 - alexcrichton:ignore, r=brson
Ignore spuriously failing Windows test
I really have no clue why this test is failing on Windows, and after months of
being unable to diagnose I'm tired of retrying PRs due to this failure. Let's
just ignore it on Windows.
Closes #3466
bors [Thu, 12 Jan 2017 04:03:27 +0000 (04:03 +0000)]
Auto merge of #3490 - alexcrichton:dev-dep-doc-test, r=brson
Fix cargo test --doc with dev-deps
Previously Cargo accidentally didn't pull in dev-dependencies due to the way
`cargo test --doc` was interpreted in terms of top-level targets. This PR
special cases this situation by ensuring that the doctest intention makes its
way all to the backend and the dependencies can be correctly calculated.
Closes #3422
Justin Geibel [Thu, 12 Jan 2017 01:03:36 +0000 (20:03 -0500)]
Rename debug target to dev in build output
This renames the debug target to dev in the build output for non-release
builds. This includes the output of commands such as `cargo build`,
`cargo test`, and `cargo doc`.
Closes #3519
bors [Thu, 12 Jan 2017 02:03:34 +0000 (02:03 +0000)]
Auto merge of #3478 - alexcrichton:lift, r=brson
Lift up workspace rlibs while building
I think the condition here was slightly off from before, so invert it subtly to
get what we want, lifting up anything in a workspace or binaries otherwise.
Closes #3432
Alex Crichton [Thu, 12 Jan 2017 00:45:29 +0000 (16:45 -0800)]
Ignore spuriously failing Windows test
I really have no clue why this test is failing on Windows, and after months of
being unable to diagnose I'm tired of retrying PRs due to this failure. Let's
just ignore it on Windows.
Closes #3466
bors [Thu, 12 Jan 2017 00:45:23 +0000 (00:45 +0000)]
Auto merge of #3527 - nikomatsakis:master, r=alexcrichton
check for `CARGO_INCREMENTAL` and pass `-Zincremental` if present
Per the discussion on IRC, this adds a very simple way for cargo users to opt into incremental compilation by setting the `CARGO_INCREMENTAL` environment variable (i.e., `CARGO_INCREMENTAL=1 cargo build`). This will result in incremental data being stored into the `target/incremental` directory. Since it supplies `-Z`, this option is only intended for use on nightly compilers, though cargo makes no effort to check.
The plan is to keep incremental compilation optional until we are feeling more confident it's not going to cause problems for people. At that point, it should become part of the compilation profile. It will be the default when building in debug builds, and opt-in for release builds.
Niko Matsakis [Wed, 11 Jan 2017 18:47:54 +0000 (13:47 -0500)]
address suggestions from acrichto
Niko Matsakis [Wed, 11 Jan 2017 16:30:12 +0000 (11:30 -0500)]
check `cargo test` too`
Niko Matsakis [Wed, 11 Jan 2017 16:20:36 +0000 (11:20 -0500)]
check for `CARGO_INCREMENTAL` and pass `-Zincremental` if present
bors [Tue, 10 Jan 2017 19:34:36 +0000 (19:34 +0000)]
Auto merge of #3524 - sdroege:test-build-doc-test-check-status, r=alexcrichton
Check the exit code of all processes started in the build/test tests
By not checking the exit codes, a failure in the build::crate_env_vars()
test was ignored.
As suggested by @alexcrichton in https://github.com/rust-lang/cargo/pull/3515#discussion_r95253461
Sebastian Dröge [Tue, 10 Jan 2017 12:02:08 +0000 (14:02 +0200)]
Check the exit code of all processes started in the build/test tests
By not checking the exit codes, a failure in the build::crate_env_vars()
test was ignored.
bors [Tue, 10 Jan 2017 07:45:10 +0000 (07:45 +0000)]
Auto merge of #3489 - matklad:rel-ws, r=alexcrichton
Use canonical paths for checking equality
bors [Mon, 9 Jan 2017 21:46:23 +0000 (21:46 +0000)]
Auto merge of #3515 - sdroege:doc-all, r=alexcrichton
Add support for documenting all members of the workspace with "doc --all"
https://github.com/rust-lang/cargo/issues/3491
bors [Mon, 9 Jan 2017 19:46:09 +0000 (19:46 +0000)]
Auto merge of #3518 - Manishearth:static-mut, r=alexcrichton
Replace static mut bool with atomicbool
unsafe in tests is fine, but it can be trivially avoided in this case.
r? @alexcrichton
cc @froydnj
Manish Goregaokar [Mon, 9 Jan 2017 14:51:37 +0000 (06:51 -0800)]
Replace static mut bool with atomicbool
Sebastian Dröge [Mon, 9 Jan 2017 10:52:56 +0000 (12:52 +0200)]
Collect library/binary names when documenting even if a spec was given
This seems more consistent and generally should work better.
Sebastian Dröge [Mon, 9 Jan 2017 10:49:13 +0000 (12:49 +0200)]
Check if the "doc --all" tests exit with exit code 0
bors [Mon, 9 Jan 2017 05:31:31 +0000 (05:31 +0000)]
Auto merge of #3511 - sdroege:build-all, r=alexcrichton
Add support for building all members of the workspace with "build --all"
https://github.com/rust-lang/cargo/issues/3491
bors [Mon, 9 Jan 2017 04:20:40 +0000 (04:20 +0000)]
Auto merge of #3510 - froydnj:cross-compilation-test-checking, r=alexcrichton
handle cross-compilation test failure more gracefully
The current cross-compilation test module fails every test if an appropriate cross standard library is not found. This behavior is unhelpful, because the failures are verbose, unexpected, and there's no
obvious way to make them go away.
Instead, it would be better to check once before all the tests that an appropriate cross-compilation setup is available. Once that check has been done, a single test can fail with an appropriate `panic!` message while the other tests silently pass. The `panic!` message can inform the user about their options, either setting an appropriate environment variable, or using rustup to install the necessary cross standard library.
Assuming the user has rustup installed, the single failure now looks
something like:
```
thread 'plugin_deps' panicked at 'Cannot cross compile to i686-unknown-linux-gnu.
This failure can be safely ignored. If you would prefer to not see this
failure, you can set the environment variable CFG_DISABLE_CROSS_TESTS to "1".
Alternatively, you can install the necessary libraries for cross-compilation with
rustup toolchain install stable-i686-unknown-linux-gnu
', tests/cross-compile.rs:87
note: Run with `RUST_BACKTRACE=1` for a backtrace.
```
The code is admittedly gnarly, with synchronization and `unsafe` sections, but I wasn't sure how to make it any better. Suggestions welcome!
Fixes #3086.
Sebastian Dröge [Sat, 7 Jan 2017 11:01:39 +0000 (13:01 +0200)]
Add tests for "build --all"
These are basically the same as the ones from "test --all"
Sebastian Dröge [Sun, 8 Jan 2017 11:59:02 +0000 (13:59 +0200)]
Add tests for "doc --all"
These are basically the same as the ones from "test --all" and "build --all"
Sebastian Dröge [Fri, 6 Jan 2017 19:57:13 +0000 (21:57 +0200)]
Add support for documenting all members of the workspace with "doc --all"
https://github.com/rust-lang/cargo/issues/3491
Aleksey Kladov [Tue, 3 Jan 2017 11:11:57 +0000 (14:11 +0300)]
Normalize paths before checking for equality
Nathan Froyd [Fri, 6 Jan 2017 19:30:38 +0000 (14:30 -0500)]
handle cross-compilation test failure more gracefully
The current cross-compilation test module fails every test if an
appropriate cross standard library is not found. This behavior is
unhelpful, because the failures are verbose, unexpected, and there's no
obvious way to make them go away.
Instead, it would be better to check once before all the tests that an
appropriate cross-compilation setup is available. Once that check has
been done, a single test can fail with an appropriate `panic!` message
while the other tests silently pass. The `panic!` message can inform
the user about their options, either setting an appropriate environment
variable, or using rustup to install the necessary cross standard
library.
Assuming the user has rustup installed, the single failure now looks
something like:
```
thread 'plugin_deps' panicked at 'Cannot cross compile to i686-unknown-linux-gnu.
This failure can be safely ignored. If you would prefer to not see this
failure, you can set the environment variable CFG_DISABLE_CROSS_TESTS to "1".
Alternatively, you can install the necessary libraries for cross-compilation with
rustup toolchain install stable-i686-unknown-linux-gnu
You may need to install runtime libraries for your Linux distribution as well.
', tests/cross-compile.rs:87
note: Run with `RUST_BACKTRACE=1` for a backtrace.
```
Fixes #3086.
bors [Fri, 6 Jan 2017 20:57:04 +0000 (20:57 +0000)]
Auto merge of #3509 - froydnj:colored-shell-tests, r=alexcrichton
disable color shell tests for terminals that don't support color
Some terminals (e.g. running a shell inside Emacs's shell-mode) don't
support color, and running tests that assume the terminal supports color
don't work so well. Instead, if color is expected, check the terminal
for whether it supports color or not, and act accordingly.
Sebastian Dröge [Fri, 6 Jan 2017 19:52:57 +0000 (21:52 +0200)]
Add support for building all members of the workspace with "build --all"
https://github.com/rust-lang/cargo/issues/3491
bors [Fri, 6 Jan 2017 18:46:47 +0000 (18:46 +0000)]
Auto merge of #3508 - petrochenkov:bsover, r=alexcrichton
Do not treat `warning` and `rerun-if-changed` as user-defined metadata in build script overrides
Fixes https://github.com/rust-lang/cargo/pull/3438#discussion_r94018355
r? @alexcrichton
Nathan Froyd [Fri, 6 Jan 2017 17:46:56 +0000 (12:46 -0500)]
disable color shell tests for terminals that don't support color
Some terminals (e.g. running a shell inside Emacs's shell-mode) don't
support color, and running tests that assume the terminal supports color
don't work so well. Instead, if color is expected, check the terminal
for whether it supports color or not, and act accordingly.
bors [Fri, 6 Jan 2017 17:16:47 +0000 (17:16 +0000)]
Auto merge of #3504 - froydnj:win32-dependencies, r=alexcrichton
make certain dependencies Windows-only
Inspired by servo/heapsize#71, we make certain dependencies only required under Windows.
Vadim Petrochenkov [Fri, 6 Jan 2017 13:28:53 +0000 (16:28 +0300)]
Do not treat `warning` and `rerun-if-changed` as user-defined metadata in build script overrides
Nathan Froyd [Thu, 5 Jan 2017 21:09:36 +0000 (16:09 -0500)]
make certain dependencies Windows-only
Inspired by servo/heapsize#71, we make certain dependencies only
required under Windows.
bors [Fri, 6 Jan 2017 06:15:35 +0000 (06:15 +0000)]
Auto merge of #3427 - nrc:api-check-2, r=alexcrichton
Make some aspects of check/build available as an API.
There are two key parts to this commit:
* let API clients run `cargo check` with minimal fuss (ops/cargo_check.rs),
* let API clients intercept and customise Cargo's calls to rustc (all the Executor stuff).
r? @alexcrichton
bors [Fri, 6 Jan 2017 01:39:26 +0000 (01:39 +0000)]
Auto merge of #3505 - froydnj:read2-delete-try, r=alexcrichton
delete unused try macro from read2.rs
AFAICS, this is unused.
bors [Thu, 5 Jan 2017 23:44:25 +0000 (23:44 +0000)]
Auto merge of #3507 - alexcrichton:appveyor-new-deploy, r=alexcrichton
Remove extraneous .BaseName from AppVeyor
Apparently this isn't necessary
Alex Crichton [Thu, 5 Jan 2017 23:41:04 +0000 (15:41 -0800)]
Remove extraneous .BaseName from AppVeyor
Apparently this isn't necessary
Nick Cameron [Thu, 5 Jan 2017 02:21:12 +0000 (15:21 +1300)]
Add `--profile check` to `cargo rustc`
Nathan Froyd [Thu, 5 Jan 2017 21:26:48 +0000 (16:26 -0500)]
delete unused try macro from read2.rs
bors [Thu, 5 Jan 2017 20:52:28 +0000 (20:52 +0000)]
Auto merge of #3495 - sfackler:bump-shell-escape, r=alexcrichton
Update shell-escape
r? @alexcrichton
bors [Thu, 5 Jan 2017 18:43:42 +0000 (18:43 +0000)]
Auto merge of #3500 - alexcrichton:appveyor-new-deploy, r=alexcrichton
Try using before_deploy on AppVeyor
Alex Crichton [Thu, 5 Jan 2017 18:04:12 +0000 (10:04 -0800)]
Try using before_deploy on AppVeyor
Alex Crichton [Tue, 20 Dec 2016 00:28:06 +0000 (16:28 -0800)]
Fix cargo test --doc with dev-deps
Previously Cargo accidentally didn't pull in dev-dependencies due to the way
`cargo test --doc` was interpreted in terms of top-level targets. This PR
special cases this situation by ensuring that the doctest intention makes its
way all to the backend and the dependencies can be correctly calculated.
Closes #3422
Alex Crichton [Fri, 30 Dec 2016 18:50:39 +0000 (10:50 -0800)]
Lift up workspace rlibs while building
I think the condition here was slightly off from before, so invert it subtly to
get what we want, lifting up anything in a workspace or binaries otherwise.
Closes #3432
Steven Fackler [Thu, 5 Jan 2017 04:06:53 +0000 (20:06 -0800)]
Update shell-escape
Nick Cameron [Thu, 29 Dec 2016 23:19:34 +0000 (12:19 +1300)]
review changes, round 2 part b
Remove the ContinueBuild concept, be lenient about missing files in all cases, and undo the fingerprint changes (not an issue now we're not stopping the build early).
Nick Cameron [Thu, 29 Dec 2016 21:50:31 +0000 (10:50 +1300)]
review changes, round 2
Mostly focussing on the ergonomics of the API - removes with_* methods with closures, and replaces generics with trait objects.
Nick Cameron [Wed, 21 Dec 2016 04:34:05 +0000 (17:34 +1300)]
Review changes
Nick Cameron [Tue, 6 Dec 2016 03:15:46 +0000 (17:15 -1000)]
Make some aspects of check/build available as an API.
There are two key parts to this commit:
* let API clients run `cargo check` with minimal fuss (ops/cargo_check.rs),
* let API clients intercept and customise Cargo's calls to rustc (all the Executor stuff).
bors [Thu, 5 Jan 2017 01:22:35 +0000 (01:22 +0000)]
Auto merge of #3468 - nrc:metadata-emit, r=alexcrichton
cargo check: use --emit=metadata rather than --crate-type=metadata
Requires https://github.com/rust-lang/rust/pull/38571 (don't land before that does)
r? @alexcrichton
Nick Cameron [Tue, 3 Jan 2017 21:22:58 +0000 (10:22 +1300)]
Fixup tests
Nick Cameron [Wed, 28 Dec 2016 21:30:34 +0000 (10:30 +1300)]
Use --emit=metadata rather than --crate-type=metadata
Requires https://github.com/rust-lang/rust/pull/38571
bors [Mon, 2 Jan 2017 18:09:26 +0000 (18:09 +0000)]
Auto merge of #3485 - sfackler:useragent, r=alexcrichton
Set a user agent with the version when talking to the registry
This can be used to track what versions of Cargo are being used in the
wild, which can be very useful.
r? @alexcrichton
Steven Fackler [Mon, 2 Jan 2017 03:35:30 +0000 (19:35 -0800)]
Set a user agent with the version when talking to the registry
This can be used to track what versions of Cargo are being used in the
wild, which can be very useful.
bors [Sat, 31 Dec 2016 02:48:35 +0000 (02:48 +0000)]
Auto merge of #3480 - alexcrichton:one-flaky-test, r=brson
Protect against spurious failure in ctrl_c test
A failure was witnessed in the Rust repository [1] which happened right after
this test and was a problem removing a directory. Local testing confirms that if
you kill Cargo then right afterwards it's very unlikely to be able to remove the
build directory, presumably because the child process is still getting torn down
in the background.
This commit fixes the ctrl_c test itself to wait for itself to release the bulid
directory, at which point the test has definitely passed.
[1]: https://ci.appveyor.com/project/rust-lang/rust/build/1.0.1331/job/xq4ogmglj7sllibw
Alex Crichton [Sat, 31 Dec 2016 02:40:20 +0000 (18:40 -0800)]
Protect against spurious failure in ctrl_c test
A failure was witnessed in the Rust repository [1] which happened right after
this test and was a problem removing a directory. Local testing confirms that if
you kill Cargo then right afterwards it's very unlikely to be able to remove the
build directory, presumably because the child process is still getting torn down
in the background.
This commit fixes the ctrl_c test itself to wait for itself to release the bulid
directory, at which point the test has definitely passed.
[1]: https://ci.appveyor.com/project/rust-lang/rust/build/1.0.1331/job/xq4ogmglj7sllibw
bors [Fri, 30 Dec 2016 18:54:01 +0000 (18:54 +0000)]
Auto merge of #3477 - sfackler:shell-escape, r=alexcrichton
Use externally sourced shell-escape
Closes #3374
r? @alexcrichton
Steven Fackler [Fri, 30 Dec 2016 18:21:10 +0000 (10:21 -0800)]
Use externally sourced shell-escape
Closes #3374
bors [Thu, 29 Dec 2016 20:38:27 +0000 (20:38 +0000)]
Auto merge of #3470 - alexcrichton:no-more-urls, r=steveklabnik
Delete manual installation URLs
These have existed since the beginning of time, but they haven't needed to exist
since long before 1.0. Let's just delete them now that they're out of date
anyway.
Alex Crichton [Thu, 29 Dec 2016 16:06:38 +0000 (08:06 -0800)]
Delete manual installation URLs
These have existed since the beginning of time, but they haven't needed to exist
since long before 1.0. Let's just delete them now that they're out of date
anyway.
bors [Thu, 29 Dec 2016 08:49:03 +0000 (08:49 +0000)]
Auto merge of #3435 - alexcrichton:bump-libssh2, r=brson
Update libssh2 to fix a segfault on Windows
There's some more discussion on #3401, but this essentially is just an inclusion
of libssh2/libssh2#163
Closes #3401
bors [Thu, 29 Dec 2016 07:37:46 +0000 (07:37 +0000)]
Auto merge of #3417 - alexcrichton:fix-svn, r=brson
Ignore dot dirs in directory sources
Looks like they'll conflict with a VCS, so let's just skip them like we do in
directory traversal elsewhere.
Closes #3414